home *** CD-ROM | disk | FTP | other *** search
- /* BeadGame by Dana C. Massie */
-
- /* This is an example of a scorefile derived by reading a Standard MIDI
- file into the Music Kit. Feel free to copy and modify it. */
-
- info tempo:62;
- noteTagRange = 64 to 90;
- part p;
- p midiChan:1 synthPatch:"Fm1i" synthPatchCount:11;
-
- envelope indFn5 = [(0,0)(.001,1,.2)(1,0,.5)];
- envelope ampFn4 = [(0,0)(.060,3,.3)(2,0,.7)(2.001,0)|(2.1,0)(2.11,0,.5)];
-
- var r = 0.4; /* Initial rest. */
-
- BEGIN;
-
- p (noteUpdate) amp:-30dB ampEnv:ampFn4 cRatio:0.5 m1Ratio:1.501 m1IndEnv:indFn5 ampRel:1.3 velocitySensitivity:0.7;
-
- END;
-
-